github.com/refraction-networking/utls.clientHandshakeStateTLS13.transcript (field)

34 uses

	github.com/refraction-networking/utls (current package)
		handshake_client_tls13.go#L41: 	transcript    hash.Hash
		handshake_client_tls13.go#L71: 	hs.transcript = hs.suite.hash.New()
		handshake_client_tls13.go#L73: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L115: 			hs.transcript = hs.echContext.innerTranscript
		handshake_client_tls13.go#L132: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L258: 	chHash := hs.transcript.Sum(nil)
		handshake_client_tls13.go#L259: 	hs.transcript.Reset()
		handshake_client_tls13.go#L260: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_client_tls13.go#L261: 	hs.transcript.Write(chHash)
		handshake_client_tls13.go#L262: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L481: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L656: 	clientSecret := handshakeSecret.ClientHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L658: 	serverSecret := handshakeSecret.ServerHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L688: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L791: 		transcriptMsg(certReq, hs.transcript) // [UTLS] if it is certReq (not compressedCert), write to transcript
		handshake_client_tls13.go#L825: 		if err = transcriptMsg(certMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L865: 	signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
		handshake_client_tls13.go#L872: 	if err := transcriptMsg(certVerify, hs.transcript); err != nil {
		handshake_client_tls13.go#L896: 	expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_client_tls13.go#L902: 	if err := transcriptMsg(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L908: 	hs.trafficSecret = hs.masterSecret.ClientApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L909: 	serverSecret := hs.masterSecret.ServerApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L923: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_client_tls13.go#L936: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L958: 	if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L983: 	signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
		handshake_client_tls13.go#L995: 	if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L1006: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L1009: 	if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L1016: 		c.resumptionSecret = hs.masterSecret.ResumptionMasterSecret(hs.transcript)
		u_handshake_client.go#L32: 					if err = transcriptMsg(compressedCertMsg, hs.transcript); err != nil {
		u_handshake_client.go#L137: 		if _, err := c.writeHandshakeRecord(clientEncryptedExtensions, hs.transcript); err != nil {
		u_public.go#L102: 			transcript:    chs.State13.Transcript,
		u_public.go#L123: 			Transcript:    chs13.transcript,